home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / fs / jffs2 / Makefile < prev   
Encoding:
Makefile  |  2008-12-24  |  751 b   |  22 lines

  1. #
  2. # Makefile for the Linux Journalling Flash File System v2 (JFFS2)
  3. #
  4. #
  5.  
  6. obj-$(CONFIG_JFFS2_FS) += jffs2.o
  7.  
  8. jffs2-y    := compr.o dir.o file.o ioctl.o nodelist.o malloc.o
  9. jffs2-y    += read.o nodemgmt.o readinode.o write.o scan.o gc.o
  10. jffs2-y    += symlink.o build.o erase.o background.o fs.o writev.o
  11. jffs2-y    += super.o debug.o
  12.  
  13. jffs2-$(CONFIG_JFFS2_FS_WRITEBUFFER)    += wbuf.o
  14. jffs2-$(CONFIG_JFFS2_FS_XATTR)        += xattr.o xattr_trusted.o xattr_user.o
  15. jffs2-$(CONFIG_JFFS2_FS_SECURITY)    += security.o
  16. jffs2-$(CONFIG_JFFS2_FS_POSIX_ACL)    += acl.o
  17. jffs2-$(CONFIG_JFFS2_RUBIN)    += compr_rubin.o
  18. jffs2-$(CONFIG_JFFS2_RTIME)    += compr_rtime.o
  19. jffs2-$(CONFIG_JFFS2_ZLIB)    += compr_zlib.o
  20. jffs2-$(CONFIG_JFFS2_LZO)    += compr_lzo.o
  21. jffs2-$(CONFIG_JFFS2_SUMMARY)   += summary.o
  22.